home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Dev / Src / Gl_bmp_load.lha / GL_BMP_Load / Requesters.h < prev    next >
C/C++ Source or Header  |  2002-12-27  |  826b  |  45 lines

  1. #ifndef REQUESTERS_H
  2. #define REQUESTERS_H
  3. #endif
  4.  
  5. /* AmigaOS includes */
  6. #define INTUI_V36_NAMES_ONLY
  7.  
  8. #include <exec/types.h>
  9. #include <intuition/intuition.h>
  10.  
  11. #include <clib/exec_protos.h>
  12. #include <clib/intuition_protos.h>
  13.  
  14. int answer;
  15. struct Library *IntuitionBase;
  16.  
  17. /* Structures for requesters */
  18.  
  19. struct EasyStruct ReqWindow =
  20.     {
  21.     sizeof(struct EasyStruct),
  22.     0,
  23.     "Error",
  24.     "Could not load texture file.",
  25.     "OK",
  26.     };
  27.  
  28. struct EasyStruct AboutWindow =
  29.     {
  30.     sizeof(struct EasyStruct),
  31.     0,
  32.     "About",
  33.     "BMP Cube\nVersion 1.0\n\nCopyright © 2002\nby Norman Walter\nAll Rights Reserved\n\nhttp://www.norman-interactive.com\n",
  34.     "OK",
  35.     };
  36.     
  37. struct EasyStruct QuitWindow =
  38.     {
  39.     sizeof(struct EasyStruct),
  40.     0,
  41.     "Quit",
  42.     "Do you really want to quit?",
  43.     "Yes|No",
  44.     };
  45.